home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 001-025 / disk_014 / amiga3d / link < prev    next >
Text File  |  1992-05-06  |  479b  |  26 lines

  1. .Key file
  2. ;           Compile a C program                       Version 1.02
  3. failat 65535
  4. echo "-- Linking <file$t1>..."
  5.  
  6. df1:c/alink with <file$t1>.with to ram:<file$t1>
  7.  
  8. if not exists ram:<file$t1>
  9. echo "Link failed: ERROR..."
  10. skip END
  11. endif
  12.  
  13. if exists df1:<file$t1>
  14. delete df1:<file$t1>
  15. endif
  16.  
  17. copy ram:<file$t1> df1:<file$t1>
  18.  
  19. if not exists df1:<file$t1>
  20. echo "Could not copy ram:<file$t1> to df1:<files$t1>..."
  21. skip END
  22. endif
  23.  
  24. echo "-- done linking '<file$t1>'. --"
  25. LAB END
  26.